-
Notifications
You must be signed in to change notification settings - Fork 621
[Playground] feat: Add PayEmbed component playground #6493
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Playground] feat: Add PayEmbed component playground #6493
Conversation
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
|
How to use the Graphite Merge QueueAdd either label to this PR to merge it via the merge queue:
You must have a Graphite account in order to use the merge queue. Sign up using this link. An organization admin has enabled the Graphite Merge Queue in this repository. Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue. This stack of pull requests is managed by Graphite. Learn more about stacking. |
size-limit report 📦
|
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #6493 +/- ##
==========================================
- Coverage 54.82% 54.78% -0.04%
==========================================
Files 875 875
Lines 54851 54891 +40
Branches 3740 3739 -1
==========================================
+ Hits 30071 30072 +1
- Misses 24685 24725 +40
+ Partials 95 94 -1
🚀 New features to boost your workflow:
|
0cf3400 to
4872581
Compare
4872581 to
6e27ab8
Compare
| <div className="flex flex-col gap-2"> | ||
| <Label htmlFor="modal-title">Image</Label> | ||
| <Input | ||
| id="modal-title" | ||
| placeholder="https://..." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The id="modal-title" attribute is duplicated on both input elements (lines 408 and 422). HTML requires unique IDs within a document to ensure proper accessibility and JavaScript functionality. Consider changing this second input to id="modal-image" to maintain uniqueness while preserving semantic meaning.
| <div className="flex flex-col gap-2"> | |
| <Label htmlFor="modal-title">Image</Label> | |
| <Input | |
| id="modal-title" | |
| placeholder="https://..." | |
| <div className="flex flex-col gap-2"> | |
| <Label htmlFor="modal-image">Image</Label> | |
| <Input | |
| id="modal-image" | |
| placeholder="https://..." |
Spotted by Diamond
Is this helpful? React 👍 or 👎 to let us know.
6e27ab8 to
5281ce2
Compare
5281ce2 to
b129c4a
Compare

PR-Codex overview
This PR focuses on enhancing the
PayEmbedcomponent and its configuration options, improving the user interface for payment options, and refining the theme management for better user experience.Detailed summary
ColorFormGroupto acceptthemeandonChangeprops.LeftSectionto handle theme changes and payment options.RightSectionto include wallet connection and payment methods.PayEmbedPlaygroundOptions.